home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _52B34DC0069A4A17837914E29874F6B6 < prev    next >
Encoding:
Text File  |  2000-03-27  |  695 b   |  28 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3.  
  4.  
  5.  
  6. // this script starts the guys running below the grate on the nyc1 map
  7.  
  8.  
  9. local entity belowguy1 // the first enemy below the tracks
  10. local entity train1    // the train that goes by underneath
  11. local int sig1
  12.  
  13. belowguy1 = find entity with targetname "belowguy1"
  14. train1 = find entity with targetname "train1"
  15.  
  16.  
  17. use entity belowguy1 // spawns the front guy in
  18. animate entity belowguy1 performing action STD_R_N_PK_N by moving [512, 0, 0] signaling sig1
  19. wait for all clearing sig1
  20. wait 5 seconds
  21. use entity train1 // triggers the train going by
  22. remove entity belowguy1 // removes the guys from the track
  23.  
  24. exit 
  25.  
  26.  
  27.  
  28.